home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / instools / prelude.zip / LINGUA13.EXE / NOCR.C < prev    next >
C/C++ Source or Header  |  1993-05-21  |  116b  |  9 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.    int c;
  5.  
  6.    while ((c=getchar())!=EOF) 
  7.       if (c!='\r' && c!='\032') putchar(c);
  8. }
  9.